home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / libmat.lha / src / mconst6.cc < prev    next >
C/C++ Source or Header  |  1980-01-01  |  169b  |  14 lines

  1. //                MATRIX LIB
  2. //            TOMMY JOHANSSON 1995
  3.  
  4. #include "matrix.h"
  5. Matrix::Matrix()
  6. {
  7.     #ifdef DEBUG
  8.     printf("Initierar en tom matris\n");
  9.     #endif
  10.     koff=NULL;
  11.     n=0;
  12.     m=0;
  13. }
  14.